home *** CD-ROM | disk | FTP | other *** search
/ HPAVC / HPAVC CD-ROM.iso / GENCSRC.ZIP / RECURSON.C < prev    next >
C/C++ Source or Header  |  1987-11-21  |  322b  |  19 lines

  1.                                          /* Chapter 5 - Program 5 */
  2. main()
  3. {
  4. int index;
  5.  
  6.    index = 8;
  7.    count_dn(index);
  8. }
  9.  
  10. count_dn(count)
  11. int count;
  12. {
  13.    count--;
  14.    printf("The value of the count is %d\n",count);
  15.    if (count > 0)
  16.       count_dn(count);
  17.    printf("Now the count is %d\n",count);
  18. }
  19.